home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / sambar_pagecount.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  71 lines

  1. #
  2. # This script was written by Vincent Renardias <vincent@strongholdnet.com>
  3. #
  4. # Licence : GPL v2
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10711);
  10.  script_bugtraq_id(3091, 3092);
  11.  script_cve_id("CVE-2001-1010");
  12.  script_version ("$Revision: 1.15 $");
  13.  name["english"] = "Sambar webserver pagecount hole";
  14.  name["francais"] = "Sambar webserver pagecount hole";
  15.  
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. By default, there is a pagecount script with Sambar Web Server
  20. located at http://sambarserver/session/pagecount
  21. This counter writes its temporary files in c:\sambardirectory\tmp.
  22. It allows to overwrite any files on the filesystem since the 'page'
  23. parameter is not checked against '../../' attacks.
  24.  
  25. Reference : http://www.securityfocus.com/archive/1/199410
  26. Risk factor : High
  27. Solution : Remove this script";
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Make a request like http://www.example.com/session/pagecount";
  32.  summary["francais"] = "Fait une requΩte du type http://www.example.com/session/pagecount";
  33.  script_summary(english:summary["english"], francais:summary["francais"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2001 Vincent Renardias",
  38.         francais:"Ce script est Copyright (C) 2001 Vincent Renardias");
  39.  family["english"] = "CGI abuses";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes", "http_version.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  script_require_keys("www/sambar");
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. include("http_func.inc");
  53.  
  54. port = get_http_port(default:80);
  55.  
  56. if(get_port_state(port))
  57. {
  58.  soc = http_open_socket(port);
  59.  if(soc)
  60.  {
  61.   buffer = http_get(item:"/session/pagecount", port:port);
  62.   send(socket:soc, data:buffer);
  63.   data = http_recv(socket:soc);
  64.   http_close_socket(soc);
  65.   if( ("Server: SAMBAR" >< data) && !ereg(string:data, pattern:"^404"))
  66.   {
  67.    security_hole(port);
  68.   }
  69.  }
  70. }
  71.